home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Interfaces & Libraries / Interfaces / CIncludes / VaListTDef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-05  |  301 b   |  18 lines  |  [TEXT/MPS ]

  1. /*
  2.     VaListDef.h -- Common definitions
  3.     
  4.     Copyright Apple Computer,Inc.    1987-1990, 1994
  5.     All rights reserved.
  6.  
  7.     va_list - defined by stdarg and stdio.  NOT defined by stddef when explicitly
  8.     included.
  9. */
  10.  
  11. #ifndef __VALISTDEF__
  12. #define __VALISTDEF__
  13.  
  14. typedef char *va_list;
  15.  
  16. #endif    /* __VALISTDEF__ */
  17.  
  18.